I have an array that is initialized like:
Element[] array = {new Element(1), new Element(2), new Element(3)};I would like to convert this array into an object of the ArrayList class.
ArrayList<Element> arraylist = ???;
home / developersection / forums / how to convert arraylist (arraylist<t>) from array (t[])
I have an array that is initialized like:
Element[] array = {new Element(1), new Element(2), new Element(3)};I would like to convert this array into an object of the ArrayList class.
ArrayList<Element> arraylist = ???;
Anonymous User
09-Apr-2015Element[] array = new Element[] { new Element(1), new Element(2), new Element(3) };